home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
SPRMTV01.ZIP
/
PROMPT.PPE
(
.txt
)
< prev
Wrap
PCBoard Programming Language Executable
|
1995-06-23
|
1KB
|
111 lines
;------------------------------------------------------------------------------
; .ss.
; `²²'
; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
; .sS²°$$$²²°"' d²°'
; .$$² .$$'
; $$$.,d$$'
; `²S$$S²'
;------------------------------------------------------------------------------
; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
;------------------------------------------------------------------------------
; PPE 3.O1 (Encryption type I) - Analysis ON - Postprocessing ON
;------------------------------------------------------------------------------
Integer INTEGER001
String STRING001
String STRING002
;------------------------------------------------------------------------------
STRING001 = ""
STRING002 = "@X08[@X0F@TIMELEFT@ @X07mins@X08] @X0D@CONFNAME@ @X08[@X0F?@X08/@X0FH@X08/@X0FX@X08]: "
Print STRING002
INTEGER001 = GetY()
While ((STRING001 == "") || (STRING001 == Chr(13))) Do
STRING001 = Upper(Inkey())
If (STRING001 == "X") Gosub LABEL001
If (STRING001 == "H") Gosub LABEL002
EndWhile
Goto LABEL003
:LABEL001
AnsiPos 1, INTEGER001
ClrEol
STRING001 = ""
InputText "@X08[@X0F@TIMELEFT@ @X07mins@X08] @X04Other Cmd: _", STRING001, 4, 64
AnsiPos 1, INTEGER001
ClrEol
If (STRING001 == "") Print STRING002
Return
:LABEL002
AnsiPos 1, INTEGER001
ClrEol
Print "@X08-[@X0FHELP@X08] @X04Hit a menu hotkey, ? for redisplay, or X for NO HOTKEY Prompt @X08[@X0FENTER@X08]"
While ((Inkey() <> Chr(13))) Print ""
AnsiPos 1, INTEGER001
ClrEol
Print STRING002
STRING001 = ""
Return
:LABEL003
PrintLn "@X0F" + STRING001
Delay 1
If (STRING001 == "?") Then
KbdStuff "MENU"
Else
KbdStuff STRING001 + Chr(13)
Endif
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 4 ClrEol
; 6 Goto
; 6 Let
; 5 Print
; 1 PrintLn
; 6 If
; 2 Gosub
; 2 Return
; 1 Delay
; 1 InputText
; 2 KbdStuff
; 4 AnsiPos
;
;
; ■ Functions used :
;
; 2 +
; 6 ==
; 1 <>
; 2 !
; 1 ||
; 1 Upper()
; 3 Chr()
; 2 Inkey()
; 1 GetY()
;
;------------------------------------------------------------------------------
;
; Analysis flags : No flag
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 1 While/EndWhile
; 1 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------